.contenedor-formulario {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.contenedor-formulario input[type="text"],
.contenedor-formulario select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contenedor-formulario input[type="submit"] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contenedor-formulario input[type="submit"]:hover {
  background-color: #45a049;
}

.formulario-ancho input {
  width: 100%;
}

.formulario-padding input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

.formulario-bordes input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid red;
  border-radius: 4px;
}

.formulario-borde-inferior input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 2px solid red;
}

.formulario-color input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  background-color: #3CBC8D;
  color: white;
}

.formulario-focus input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #555;
  outline: none;
}

.formulario-focus input[type="text"]:focus {
  background-color: lightblue;
}


.formulario-transicion-borde input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  outline: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.formulario-transicion-borde input[type="text"]:focus {
  border: 3px solid #555;
}


.formulario-icono input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url('../IMG/LUPA.png');
  background-size: 25px 25px; /* ancho x alto */

  background-position: 5px 5px; 
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
}

.entrada-busqueda-animada {
  width: 130px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url('../IMG/LUPA.png'); /* Asegúrate que esta imagen exista */
   background-size: 25px 25px; /* ancho x alto */
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  transition: width 0.4s ease-in-out;
}

.entrada-busqueda-animada:focus {
  width: 100%;
}

.area-texto-estilizada {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}


.menu-select-estilizado {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  background-color: #f1f1f1;
}


.boton-formulario {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.contenedor {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.columna-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.columna-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Limpiar los floats después de las columnas */
.fila::after {
  content: "";
  display: table;
  clear: both;
}

/* Diseño responsivo: cuando la pantalla es menor a 600px de ancho, las dos columnas se apilan */
@media screen and (max-width: 600px) {
  .columna-25, .columna-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}



